b1241c0db70f7bd08eaec47f82a4024b3ef0e43b,maven-changes-plugin/src/main/java/org/apache/maven/plugin/changes/IssueAdapter.java,IssueAdapter,createAction,#Issue#,95

Before Change



        // @todo To support types for different IMSes we need some way to map these values to the ones used in a particular IMS
        String type = "";
        if ( issue.getType().equals( "Bug" ) )
        {
            type = "fix";
        }

After Change


        action.setIssue( issue.getKey() );

        String type = "";
        if ( issueMap.containsKey( issue.getType() ) )
        {
            type = issueMap.get( issue.getType() );
        }